home *** CD-ROM | disk | FTP | other *** search
/ Enter 2002 March / EnterCD 3_2002.iso / Offline / vhm 17 / html / menu_s.js < prev    next >
Encoding:
Text File  |  2002-01-02  |  1.5 KB  |  42 lines

  1. var menuskin = "skin1"; // wybierz skin, mo┐na go edytowac powy┐ej
  2. var display_url = 0; // czy pokazywac URL na dole?
  3. function showmenuie5() {
  4. var rightedge = document.body.clientWidth-event.clientX;
  5. var bottomedge = document.body.clientHeight-event.clientY;
  6. if (rightedge < ie5menu.offsetWidth)
  7. ie5menu.style.left = document.body.scrollLeft + event.clientX - ie5menu.offsetWidth;
  8. else
  9. ie5menu.style.left = document.body.scrollLeft + event.clientX;
  10. if (bottomedge < ie5menu.offsetHeight)
  11. ie5menu.style.top = document.body.scrollTop + event.clientY - ie5menu.offsetHeight;
  12. else
  13. ie5menu.style.top = document.body.scrollTop + event.clientY;
  14. ie5menu.style.visibility = "visible";
  15. return false;
  16. }
  17. function hidemenuie5() {
  18. ie5menu.style.visibility = "hidden";
  19. }
  20. function highlightie5() {
  21. if (event.srcElement.className == "menuitems") {
  22. event.srcElement.style.backgroundColor = "highlight";
  23. event.srcElement.style.color = "white"; // kolor czcionki po zamianie
  24. if (display_url)
  25. window.status = event.srcElement.url;
  26.    }
  27. }
  28. function lowlightie5() {
  29. if (event.srcElement.className == "menuitems") {
  30. event.srcElement.style.backgroundColor = "";
  31. event.srcElement.style.color = "black"; // kolor czcionki po zamianie, zostanie
  32. window.status = "";
  33.    }
  34. }
  35. function jumptoie5() {
  36. if (event.srcElement.className == "menuitems") {
  37. if (event.srcElement.getAttribute("target") != null)
  38. window.open(event.srcElement.url, event.srcElement.getAttribute("target"));
  39. else
  40. window.location = event.srcElement.url;
  41.    }
  42. }